ci: fix provider release through correct zipping #2778
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context
The current Terraform provider release is broken because of wrong zipping.
Terraform expects the zip files to only contain the binary file, but our zip inflates to a directory. This leads to TF not finding the binary:
https://github.com/edgelesssys/constellation/actions/runs/7339043840/job/19982584425#step:18:62
See the relevant zipping line:
constellation/.github/workflows/draft-release.yml
Line 465 in 48343dd
You can check that this is done correctly for the edgelesstest, which works:
Otherwise when downloading the provider release, the provider structure has an unexpected directory nesting, i.e.
the last directory of
providers/registry.terraform.io/edgelesssys/constellation/2.14.0/darwin_arm64/terraform-provider-constellation_2.14.0_darwin_arm64
should not be there, and leads to TF not finding the binary.Proposed change(s)
Additional info
Checklist